home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 30
/
Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso
/
Aminet
/
dev
/
cross
/
GBDK-2.0.lha
/
GBDK
/
lib
/
labs.c
< prev
next >
Wrap
C/C++ Source or Header
|
1998-10-01
|
99b
|
10 lines
#include <stdlib.h>
WORD labs(WORD num)
{
if(num < 0)
return -num;
else
return num;
}